【例子介绍】C#与西门子PLC通讯
【相关图片】
【源码结构】
.
├── C#与西门子PLC通讯.rar
├── PLC
│ ├── PLC
│ │ ├── App.config
│ │ ├── Class1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.cs
│ │ ├── Form1.resx
│ │ ├── PLC.csproj
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── Service References
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── PLC.exe
│ │ │ │ ├── PLC.exe.config
│ │ │ │ ├── PLC.pdb
│ │ │ │ ├── PLC.vshost.exe
│ │ │ │ ├── PLC.vshost.exe.config
│ │ │ │ ├── PLC.vshost.exe.manifest
│ │ │ │ ├── S7.Net.dll
│ │ │ │ └── S7.Net.xml
│ │ │ └── Release
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── PLC.Form1.resources
│ │ │ ├── PLC.Properties.Resources.resources
│ │ │ ├── PLC.csproj.FileListAbsolute.txt
│ │ │ ├── PLC.csproj.GenerateResource.Cache
│ │ │ ├── PLC.csprojResolveAssemblyReference.cache
│ │ │ ├── PLC.exe
│ │ │ ├── PLC.pdb
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ └── packages.config
│ ├── PLC.sln
│ ├── PLC.v11.suo
│ └── packages
│ ├── S7netplus.0.16.0
│ │ ├── S7netplus.0.16.0.nupkg
│ │ └── lib
│ │ ├── net452
│ │ │ ├── S7.Net.dll
│ │ │ └── S7.Net.xml
│ │ ├── net5.0
│ │ │ ├── S7.Net.dll
│ │ │ └── S7.Net.xml
│ │ ├── netstandard1.3
│ │ │ ├── S7.Net.dll
│ │ │ └── S7.Net.xml
│ │ └── netstandard2.0
│ │ ├── S7.Net.dll
│ │ └── S7.Net.xml
│ └── repositories.config
└── VMoom.TemplateEngine.suo
17 directories, 48 files
评论